home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <style>
- body {margin: 0; padding: 0;}
- </style>
- <script language="JavaScript">
- <!-- fnResize function -->
- function fnResize(oObj, rx, ry)
- {
- oObj.filters.item(0).M11 *= rx;
- oObj.filters.item(0).M12 *= ry;
- oObj.filters.item(0).M21 *= rx;
- oObj.filters.item(0).M22 *= ry;
- }
-
- function nail()
- {
- var sx, sy, dx, dy;
-
- dx = 400; dy = 300;
- sx = document.all.lala.clientWidth;
- sy = document.all.lala.clientHeight;
-
- //alert("" + sx + "x" + sy);
- rx = dx / sx;
- ry = dy / sy;
- //alert("" + rx + "x" + ry);
-
- fnResize(document.all.lala, rx, ry);
- document.all.lala.style.visibility = "visible";
- }
- </script>
- </head>
- <body onload="nail()">
- <div id="display" style="position: absolute;left: 0; top: 0;z-index: 1; visibility: hidden">
- <iframe src="index.html" id="lala" style="width: 1024; height: 768;
- filter:progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand');">
- </iframe>
- </div>
- <div id="cover" style="position: absolute; left: 0; top: 0; z-index: 5;">
- <table width="400" height="300" border="0">
- <td><td> </td></tr>
- </table>
- </div>
- </body>
- </html>
-